﻿.article-meta-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 18px 25px;
    margin: 25px 0;
}

.meta-items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 400;
}

    .meta-item i {
        font-size: 16px;
        color: #495057;
    }

 .article-header {
    margin: 30px 0;
    padding-bottom: 20px;
    border-bottom: 3px solid #f0f0f0;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
}

 .article-short-desc {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-right: 4px solid #667eea;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 8px;
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    font-weight: 500;
}

 .article-content {
    font-size: 16px;
    line-height: 2;
    color: #4a5568;
    margin: 30px 0;
}

 .article-share-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.share-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
}

    .share-header i {
        font-size: 22px;
        color: #667eea;
    }

.share-actions {
    display: flex;
    gap: 15px;
}

.share-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    color: #4a5568;
    transition: all 0.3s ease;
}

    .share-input:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.btn-copy-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .btn-copy-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    .btn-copy-link:active {
        transform: translateY(0);
    }

    .btn-copy-link i {
        font-size: 16px;
    }

 .custom-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    z-index: 9999;
    animation: slideInRight 0.4s ease, slideOutRight 0.4s ease 2.6s;
}

    .custom-toast i {
        font-size: 22px;
    }

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

 @media (max-width: 768px) {
    .article-title {
        font-size: 24px;
    }

    .meta-items {
        gap: 20px;
    }

    .meta-item {
        font-size: 13px;
    }

    .share-actions {
        flex-direction: column;
    }

    .article-share-card {
        padding: 20px;
    }

     .custom-toast {
        display: none !important;
    }
}


.article-content-main {
    font-family: "iransans","primary-font" !important;
}
 
         