=<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>صفحه مقاله - سایت خبری</title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css">
    <style>
        /* فونت فارسی */
        @font-face {
            font-family: Vazir;
            src: url('https://cdn.fontcdn.ir/Font/Persian/Vazir/Vazir.eot');
            src: url('https://cdn.fontcdn.ir/Font/Persian/Vazir/Vazir.eot?#iefix') format('embedded-opentype'),
                 url('https://cdn.fontcdn.ir/Font/Persian/Vazir/Vazir.woff2') format('woff2'),
                 url('https://cdn.fontcdn.ir/Font/Persian/Vazir/Vazir.woff') format('woff'),
                 url('https://cdn.fontcdn.ir/Font/Persian/Vazir/Vazir.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Vazir', 'Tahoma', 'Arial', sans-serif;
        }

        body {
            line-height: 1.8;
            color: #333;
            background-color: #f5f5f5;
            direction: rtl;
            text-align: right;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: white;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            font-size: 14px;
            color: #7f8c8d;
        }

        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: #2980b9;
            text-decoration: underline;
        }

        .breadcrumb span {
            margin: 0 8px;
            color: #bdc3c7;
        }

        /* Article Layout */
        .article-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 20px 0;
        }

        /* Article Detail */
        .article-detail {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            animation: fadeInUp 0.6s ease-out;
        }

        /* Article Header */
        .article-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #ecf0f1;
        }

        .article-title {
            font-size: 28px;
            font-weight: bold;
            line-height: 1.5;
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: justify;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 14px;
            color: #7f8c8d;
        }

        .meta-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .meta-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-meta i {
            color: #3498db;
        }

        .article-category a {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .article-category a:hover {
            color: #2980b9;
        }

        /* Article Tools */
        .article-tools {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }

        .article-tools button {
            background: #ecf0f1;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            color: #7f8c8d;
            transition: all 0.3s;
            font-size: 14px;
            font-family: 'Vazir', sans-serif;
        }

        .article-tools button:hover {
            background: #3498db;
            color: white;
        }

        /* Article Image */
        .article-image {
            margin-bottom: 30px;
            text-align: center;
        }

        .article-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .article-image figcaption {
            margin-top: 10px;
            font-size: 14px;
            color: #7f8c8d;
            text-align: center;
        }

        /* Article Summary */
        .article-summary {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-right: 4px solid #3498db;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .article-summary p {
            font-size: 16px;
            color: #2c3e50;
            margin: 0;
            font-weight: 500;
            text-align: justify;
        }

        /* Article Content */
        .article-content {
            font-size: 18px;
            line-height: 2;
            color: #333;
            margin-bottom: 30px;
            text-align: justify;
        }

        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }

        .article-content h2,
        .article-content h3,
        .article-content h4 {
            color: #2c3e50;
            margin: 35px 0 20px 0;
            font-weight: bold;
            line-height: 1.5;
        }

        .article-content h2 {
            font-size: 24px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ecf0f1;
        }

        .article-content h3 {
            font-size: 22px;
        }

        .article-content h4 {
            font-size: 20px;
        }

        .article-content blockquote {
            border-right: 4px solid #3498db;
            background: #f8f9fa;
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
            font-style: italic;
            color: #2c3e50;
        }

        .article-content ul, 
        .article-content ol {
            padding-right: 30px;
            margin: 20px 0;
        }

        .article-content li {
            margin-bottom: 10px;
        }

        /* Article Video */
        .article-video {
            margin-bottom: 30px;
        }

        .article-video h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 20px;
        }

        .article-video iframe,
        .article-video video {
            width: 100%;
            height: 400px;
            border-radius: 8px;
            border: none;
        }

        /* Article Tags */
        .article-tags {
            margin-bottom: 30px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .article-tags h4 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            background: #3498db;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .tag:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }

        /* Social Share */
        .social-share {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .social-share h4 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .share-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .share-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 5px;
            text-decoration: none;
            color: white;
            font-size: 14px;
            transition: all 0.3s;
        }

        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }

        .share-btn.telegram {
            background: #0088cc;
        }

        .share-btn.twitter {
            background: #1da1f2;
        }

        .share-btn.facebook {
            background: #4267b2;
        }

        .share-btn.whatsapp {
            background: #25D366;
        }

        /* Related Articles */
        .related-articles {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #ecf0f1;
        }

        .related-articles h3 {
            color: #2c3e50;
            margin-bottom: 25px;
            font-size: 22px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ecf0f1;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .related-card {
            background: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .related-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }

        .related-content {
            padding: 15px;
        }

        .related-content h4 {
            margin-bottom: 10px;
            font-size: 16px;
            line-height: 1.5;
            height: 75px;
            overflow: hidden;
        }

        .related-content h4 a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s;
        }

        .related-content h4 a:hover {
            color: #3498db;
        }

        .related-date {
            font-size: 13px;
            color: #7f8c8d;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Article Sidebar */
        .article-sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .sidebar-widget {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .widget-header {
            background: #3498db;
            color: white;
            padding: 15px 20px;
            font-weight: bold;
            font-size: 18px;
        }

        .widget-content {
            padding: 20px;
        }

        .popular-news-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

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

        .popular-news-item img {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
        }

        .popular-news-content {
            flex: 1;
        }

        .popular-news-title {
            font-size: 15px;
            font-weight: bold;
            line-height: 1.5;
            margin-bottom: 5px;
            height: 68px;
            overflow: hidden;
        }

        .popular-news-title a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }

        .popular-news-title a:hover {
            color: #3498db;
        }

        .popular-news-views {
            font-size: 12px;
            color: #7f8c8d;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .article-layout {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .article-sidebar {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .article-detail {
                padding: 20px;
            }
            
            .article-title {
                font-size: 24px;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .meta-left {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .article-tools {
                justify-content: flex-start;
                margin-top: 15px;
            }
            
            .share-buttons {
                flex-direction: column;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
            
            .article-video iframe,
            .article-video video {
                height: 250px;
            }

            .article-content {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .article-detail {
                padding: 15px;
            }
            
            .article-title {
                font-size: 22px;
            }
            
            .article-content {
                font-size: 15px;
            }
            
            .breadcrumb {
                font-size: 13px;
                padding: 12px 15px;
            }
            
            .article-video iframe,
            .article-video video {
                height: 200px;
            }

            .tags-list {
                justify-content: center;
            }

            .article-tools {
                flex-wrap: wrap;
            }
        }

        /* Print Styles */
        @media print {
            .article-tools,
            .social-share,
            .related-articles,
            .article-sidebar,
            .breadcrumb {
                display: none !important;
            }
            
            .article-layout {
                grid-template-columns: 1fr;
            }
            
            .article-detail {
                box-shadow: none;
                padding: 0;
            }
            
            .article-title {
                color: black;
                font-size: 24pt;
            }
            
            .article-content {
                color: black;
                font-size: 12pt;
            }

            .article-content p {
                text-align: justify;
            }

            .article-image img {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }

        /* Animation for article content */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Highlight important text */
        .highlight {
            background-color: #fff8e1;
            padding: 20px;
            border-radius: 8px;
            border-right: 4px solid #ffc107;
            margin: 25px 0;
            font-weight: 500;
        }

        /* Author box */
        .author-box {
            display: flex;
            gap: 20px;
            align-items: center;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h4 {
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .author-info p {
            color: #7f8c8d;
            font-size: 14px;
            margin: 0;
        }
    </style>
</head>
<body>
    <div class="container">
        <!-- Breadcrumb -->
        <div class="breadcrumb">
            <a href="#">خانه</a>
            <span>/</span>
            <a href="#">اخبار سیاسی</a>
            <span>/</span>
            <a href="#">اخبار داخلی</a>
            <span>/</span>
            <span>جزئیات خبر</span>
        </div>

        <!-- Article Layout -->
        <div class="article-layout">
            <!-- Main Article Content -->
            <div class="article-detail">
                <!-- Article Header -->
                <div class="article-header">
                    <h1 class="article-title">وزیر خارجه ایران: توافق هسته‌ای در صورت پایبندی طرفین قابل احیا است</h1>
                    
                    <div class="article-meta">
                        <div class="meta-left">
                            <span class="article-date">
                                <i class="fa fa-calendar"></i>
                                <span>۲۵ مرداد ۱۴۰۳ - ۱۲:۳۰</span>
                            </span>
                            <span class="article-author">
                                <i class="fa fa-user"></i>
                                <span>نگار احمدی</span>
                            </span>
                            <span class="article-category">
                                <i class="fa fa-folder"></i>
                                <a href="#">سیاسی</a>
                            </span>
                            <span class="article-views">
                                <i class="fa fa-eye"></i>
                                <span>۱,۲۴۵ بازدید</span>
                            </span>
                        </div>
                        <div class="meta-right">
                            <span class="article-comments">
                                <i class="fa fa-comments"></i>
                                <span>۴۸ نظر</span>
                            </span>
                        </div>
                    </div>

                    <div class="article-tools">
                        <button><i class="fa fa-print"></i> چاپ</button>
                        <button><i class="fa fa-download"></i> ذخیره</button>
                        <button><i class="fa fa-share-alt"></i> اشتراک</button>
                    </div>
                </div>

                <!-- Article Image -->
                <figure class="article-image">
                    <img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAwIiBoZWlnaHQ9IjQ1MCIgdmlld0JveD0iMCAwIDgwMCA0NTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3Qgd2lkdGg9IjgwMCIgaGVpZ2h0PSI0NTAiIGZpbGw9IiMzNDk4ZGIiLz4KICA8dGV4dCB4PSI0MDAiIHk9IjIyNSIgZm9udC1mYW1pbHk9IkFyaWFsIiBmb250LXNpemU9IjI0IiBmb250LXdlaWdodD0iYm9sZCIgZmlsbD0id2hpdGUiIHRleHQtYW5jaG9yPSJtaWRkbGUiPuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmuKAmu极好的! این یک نمونه تصویر برای مقاله است</text>
            <figcaption>وزیر امور خارجه ایران در نشست خبری - مرداد ۱۴۰۳</figcaption>
        </figure>

        <!-- Article Summary -->
        <div class="article-summary">
            <p>وزیر امور خارجه کشورمان در نشست خبری مشترک با همتای روس خود تأکید کرد که توافق هسته‌ای در صورت پایبندی تمام طرفین به تعهدات خود، قابل احیا است. وی همچنین بر عزم جمهوری اسلامی ایران برای ادامه مذاکرات سازنده تأکید کرد.</p>
        </div>

        <!-- Article Content -->
        <div class="article-content">
            <p>وزیر امور خارجه ایران امروز در نشست خبری مشترک با همتای روس خود در مسکو، به بررسی آخرین تحولات مربوط به برجام و روابط دوجانبه پرداخت. وی در این نشست بر امکان احیای توافق هسته‌ای در صورت پایبندی تمام طرفین تأکید کرد.</p>
            
            <p>وی افزود: «جمهوری اسلامی ایران همواره پایبندی خود به تعهدات بین‌المللی را نشان داده است و آماده است تا در چارچوب مذاکرات سازنده، به توافقی متعادل و پایدار دست یابد.»</p>
            
            <h2>واکنش به مواضع غربی</h2>
            
            <p>وزیر امور خارجه ایران در پاسخ به سؤالی درباره مواضع اخیر کشورهای غربی گفت: «متأسفانه برخی طرفین به جای پایبندی به تعهدات خود، به تحریم‌های غیرقانونی ادامه داده و مانع پیشرفت مذاکرات شده‌اند.»</p>
            
            <div class="highlight">
                <p>وی تصریح کرد: «ایران هیچگاه به دنبال ساخت سلاح هسته‌ای نبوده و نخواهد بود، اما حق مسلم خود برای استفاده صلح‌آمیز از انرژی هسته‌ای را حفظ خواهد کرد.»</p>
            </div>
            
            <p>وزیر خارجه ایران همچنین به همکاری‌های منطقه‌ای اشاره کرد و افزود: «همکاری‌های ایران و روسیه در زمینه‌های مختلف به ویژه در مقابله با تروریسم و افراطی‌گری، نقش مهمی در ثبات منطقه دارد.»</p>
            
            <h3>دیدگاه کارشناسان</h3>
            
            <p>کارشناسان مسائل بین‌الملل معتقدند که این اظهارات در آستانه دور جدیدی از مذاکرات وین بیان شده و می‌تواند نشان‌دهنده تمایل ایران برای بازگشت به میز مذاکره باشد.</p>
            
            <p>یکی از این کارشناسان به خبرگزاری ما گفت: «اظهارات امروز وزیر خارجه ایران حاوی پیام‌های مهمی برای طرفین غربی است و نشان می‌دهد که ایران همچنان به دنبال راه‌حل دیپلماتیک است.»</p>
            
            <blockquote>
                <p>احیای برجام نیازمند اراده سیاسی جدی از سوی تمام طرفین است. ایران همواره اراده خود را نشان داده و آماده است تا در صورت پایبندی دیگران، به تعهدات خود عمل کند.</p>
            </blockquote>
            
            <p>این در حالی است که مقامات آمریکایی نیز اخیراً اعلام کرده‌اند که آماده هستند تا در صورت بازگشت ایران به پایبندی کامل به تعهدات هسته‌ای، تحریم‌ها را لغو کنند.</p>
            
            <h4>ادامه مذاکرات</h4>
            
            <p>پیش‌بینی می‌شود دور جدید مذاکرات وین در هفته‌های آینده از سر گرفته شود. منابع آگاه از احتمال حضور نمایندگان سطح بالا در این دور از مذاکرات خبر داده‌اند.</p>
            
            <p>وزیر خارجه ایران در پایان تأکید کرد که کشورمان با حسن نیت کامل به مذاکرات ادامه خواهد داد و امیدوار است که طرفین غربی نیز با عزمی راسخ و بدون اتخاذ مواضع یکجانبه، در این مسیر همراهی کنند.</p>
        </div>

        <!-- Article Video -->
        <div class="article-video">
            <h3>گزارش ویدیویی از نشست خبری</h3>
            <div style="background:#ecf0f1; height:400px; border-radius:8px; display:flex; align-items:center; justify-content:center; color:#7f8c8d;">
                [پخش ویدیو - گزارش کامل نشست خبری]
            </div>
        </div>

        <!-- Author Box -->
        <div class="author-box">
            <img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxjaXJjbGUgY3g9IjQwIiBjeT0iNDAiIHI9IjQwIiBmaWxsPSIjZDhlOGVjIi8+CiAgICA8Y2lyY2xlIGN4PSI0MCIgY3k9IjM0IiByPSIxMCIgZmlsbD0iI2E2YTZhNiIvPgogICAgPHBhdGggZD0iTTI4IDUyQzMxLjUgNDQuNSA0OC41IDQ0LjUgNTIgNTIiIHN0cm9rZT0iI2E2YTZhNiIgc3Ryb2tlLXdpZHRoPSI0Ii8+Cjwvc3ZnPg==" alt="Author" class="author-avatar">
            <div class="author-info">
                <h4>نگار احمدی</h4>
                <p>تحلیلگر مسائل بین‌الملل با ۱۰ سال سابقه خبرنگاری در حوزه سیاست خارجی</p>
            </div>
        </div>

        <!-- Article Tags -->
        <div class="article-tags">
            <h4>کلمات کلیدی:</h4>
            <div class="tags-list">
                <a href="#" class="tag">برجام</a>
                <a href="#" class="tag">توافق هسته‌ای</a>
                <a href="#" class="tag">وزارت خارجه</a>
                <a href="#" class="tag">مذاکرات وین</a>
                <a href="#" class="tag">سیاست خارجی</a>
            </div>
        </div>

        <!-- Social Share -->
        <div class="social-share">
            <h4>اشتراک گذاری:</h4>
            <div class="share-buttons">
                <a href="#" class="share-btn telegram">
                    <i class="fa fa-telegram"></i>
                    <span>تلگرام</span>
                </a>
                <a href="#" class="share-btn twitter">
                    <i class="fa fa-twitter"></i>
                    <span>توییتر</span>
                </a>
                <a href="#" class="share-btn facebook">
                    <i class="fa fa-facebook"></i>
                    <span>فیس‌بوک</span>
                </a>
                <a href="#" class="share-btn whatsapp">
                    <i class="fa fa-whatsapp"></i>
                    <span>واتس‌اپ</span>
                </a>
            </div>
        </div>

        <!-- Related Articles -->
        <div class="related-articles">
            <h3>اخبار مرتبط</h3>
            <div class="related-grid">
                <div class="related-card">
                    <img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAwIiBoZWlnaHQ9IjE2MCIgdmlld0JveD0iMCAwIDMwMCAxNjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3Qgd2lkdGg9IjMwMCIgaGVpZ2h0PSIxNjAiIGZpbGw9IiM5OGQ0ZjYiLz4KICA8dGV4dCB4PSIxNTAiIHk9IjgwIiBmb250LWZhbWlseT0iQXJpYWwiIGZvbnQtc2l6ZT0iMTQiIGZpbGw9IndoaXRlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIj7imqDimaTimaXimaTimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXima极好的! این یک نمونه تصویر برای مقاله مرتبط است</text>
            </svg>" alt="Related News 1">
                    <div class="related-content">
                        <h4><a href="#">واکنش وزارت خارجه به اظهارات اخیر مقام آمریکایی درباره برجام</a></h4>
                        <span class="related-date"><i class="fa fa-clock-o"></i> ۲ روز پیش</span>
                    </div>
                </div>
                
                <div class="related-card">
                    <img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAwIiBoZWlnaHQ9IjE2MCIgdmlld0JveD0iMCAwIDMwMCAxNjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3Qgd2lkdGg9IjMwMCIgaGVpZ2h0PSIxNjAiIGZpbGw9IiM5OGQ0ZjYiLz4KICA8dGV4dCB4PSIxNTAiIHk9IjgwIiBmb250LWZhbWlseT0iQXJpYWwiIGZvbnQtc2l6ZT0iMTQiIGZpbGw9IndoaXRlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIj7imqDimaTimaXimaTimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXima极好的! این یک نمونه تصویر برای مقاله مرتبط است</text>
            </svg>" alt="Related News 2">
                    <div class="related-content">
                        <h4><a href="#">تحلیلگران: دور جدید مذاکرات وین می‌تواند تا پایان ماه آینده آغاز شود</a></h4>
                        <span class="related-date"><i class="fa fa-clock-o"></i> ۳ روز پیش</span>
                    </div>
                </div>
                
                <div class="related-card">
                    <img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAwIiBoZWlnaHQ9IjE2MCIgdmlld0JveD0iMCAwIDMwMCAxNjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3Qgd2lkdGg9IjMwMCIgaGVpZ2h0PSIxNjAiIGZpbGw9IiM5OGQ0ZjYiLz4KICA8dGV4dCB4PSIxNTAiIHk9IjgwIiBmb250LWZhbWlseT0iQXJpYWwiIGZvbnQtc2l6ZT0iMTQiIGZpbGw9IndoaXRlIiB0ZXh0LWFuY2hvcj0ibWlkZGxlIj7imqDimaTimaXimaTimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXimaXima极好的! این یک نمونه تصویر برای مقاله مرتبط است</text>
            </svg>" alt="Related News 3">
                    <div class="related-content">
                        <h4><a href="#">سفر وزیر خارجه ایران به مسکو؛ بررسی همکاری‌های دوجانبه و منطقه‌ای</a></h4>
                        <span class="related-date"><i class="fa fa-clock-o"></i> ۴ روز پیش</span>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- Article Sidebar -->
    <aside class="article-sidebar">
        <div class="sidebar-widget">
            <div class="widget-header">پربازدیدترین اخبار</div>
            <div class="widget-content">
                <div class="popular-news-item">
                    <img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA4MCA2MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjgwIiBoZWlnaHQ9IjYwIiBmaWxsPSIjZWMwMCIvPgo8dGV4dCB4PSI0MCIgeT0iMzAiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxMiIgZmlsbD0id2hpdGUiIHRleHQtYW5jaG9yPSJtaWRkbGUiPuKAizwvdGV4dD4KPC9zdmc+" alt="Popular News 1">
                    <div class="popular-news-content">
                        <h4 class="popular-news-title"><a href="#">افزایش قیمت نفت در بازارهای جهانی پس از اعلامیه اوپک پلاس</a></h4>
                        <span class="popular-news-views"><i class="fa fa-eye"></i> ۲,۴۵۶ بازدید</span>
                    </div>
                </div>
                <div class="popular-news-item">
                    <img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA4MCA2MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjgwIiBoZWlnaHQ9IjYwIiBmaWxsPSIjZWMwMCIvPgo8dGV4dCB4PSI0MCIgeT0iMzAiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxMiIgZmlsbD0id2hpdGUiIHRleHQtYW5jaG9y=" alt="Popular News 2">
                    <div class="popular-news-content">
                        <h4 class="popular-news-title"><a href="#">پیروزی تیم ملی والیبال ایران برابر برزیل در لیگ ملت‌ها</a></h4>
                        <span class="popular-news-views"><i class="fa fa-eye"></i> ۱,۹۸۷ بازدید</span>
                    </div>
                </div>
                <div class="popular-news-item">
                    <img src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA4MCA2MCIgZmlsbD0ibm9uZSIgeG1sbnS9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjgwIiBoZWlnaHQ9IjYwIiBmaWxsPSIjZWMwMCIvPgo8dGV4dCB4PSI0MCIgeT0iMzAiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxMiIgZmlsbD0id2hpdGUiIHRleHQtYW5jaG9yPSJtaWRkbGUiPuKAizwvdGV4dD4KPC9zdmc+" alt="Popular News 3">
                    <div class="popular-news-content">
                        <h4 class="popular-news-title"><a href="#">افتتاح پروژه بزرگ ملی پتروشیمی در عسلویه با حضور رئیس‌جمهور</a></h4>
                        <span class="popular-news-views"><i class="fa fa-eye"></i> ۱,۷۶۵ بازدید</span>
                    </div>
                </div>
            </div>
        </div>

        <div class="sidebar-widget">
            <div class="widget-header">دسته‌بندی‌ها</div>
            <div class="widget-content">
                <ul class="categories-list">
                    <li><a href="#">سیاسی <span class="category-count">۱۲۴</span></a></li>
                    <li><a href="#">اقتصادی <span class="category-count">۸۷</span></a></li>
                    <li><a href="#">ورزشی <span class="category-count">۱۵۶</span></a></li>
                    <li><a href="#">فرهنگی <span class="category-count">۷۶</span></a></li>
                    <li><a href="#">بین‌الملل <span class="category-count">۹۸</span></a></li>
                    <li><a href="#">علمی <span class="category-count">۶۵</span></a></li>
                </ul>
            </div>
        </div>

        <div class="sidebar-widget">
            <div class="widget-header">خبرنامه</div>
            <div class="widget-content">
                <p>با عضویت در خبرنامه، آخرین اخبار را در ایمیل خود دریافت کنید.</p>
                <form style="margin-top: 15px;">
                    <input type="email" placeholder="آدرس ایمیل" style="width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; margin-bottom: 10px;">
                    <button type="submit" style="width: 100%; background: #3498db; color: white; border: none; padding: 10px; border-radius: 5px; cursor: pointer;">عضویت</button>
                </form>
            </div>
        </div>
    </aside>
</div>
</div>

<script>
    // اسکریپت ساده برای دکمه‌های ابزار مقاله
    document.querySelector('.article-tools button:nth-child(1)').addEventListener('click', function() {
        window.print();
    });
    
    document.querySelector('.article-tools button:nth-child(2)').addEventListener('click', function() {
        alert('امکان ذخیره مقاله به زودی اضافه خواهد شد.');
    });
    
    document.querySelector('.article-tools button:nth-child(3)').addEventListener('click', function() {
        document.querySelector('.social-share').scrollIntoView({behavior: 'smooth'});
    });
</script>
</body>
</html>