/* ============================================
   SHARE - SUCCESS STORIES (ألوان فاتحة)
   ============================================ */

/* تم دمج الأنماط داخل الصفحة مباشرة */
/* هذا الملف للإضافات المستقبلية */

.stories-section {
    background: #FFFFFF;
    padding: 40px 0 80px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.story-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(13, 148, 136, 0.06);
    border: 1px solid #D1FAE5;
    transition: all 0.3s;
    position: relative;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.10);
    border-color: #0D9488;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #F59E0B;
    color: #FFFFFF;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

[dir="rtl"] .featured-badge {
    right: auto;
    left: 20px;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.story-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0D9488;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.story-username {
    font-weight: 600;
    color: #065F46;
    font-size: 14px;
}

.story-date {
    font-size: 12px;
    color: #14B8A6;
}

.story-item {
    font-size: 13px;
    color: #0D9488;
    background: #ECFDF5;
    padding: 4px 12px;
    border-radius: 50px;
}

.story-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #065F46;
    margin-bottom: 8px;
}

.story-content p {
    font-size: 15px;
    color: #047857;
    line-height: 1.7;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #D1FAE5;
}

.story-views {
    font-size: 13px;
    color: #14B8A6;
}

.story-share {
    background: none;
    border: none;
    color: #0D9488;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.story-share:hover {
    color: #0F766E;
}

.empty-state {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 60px 20px;
    text-align: center;
}

.empty-state i {
    font-size: 48px;
    color: #D1FAE5;
    display: block;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 22px;
    color: #065F46;
    margin-bottom: 8px;
}

.empty-state p {
    color: #14B8A6;
    margin-bottom: 24px;
}

.btn-gold {
    background: #F59E0B;
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    background: #D97706;
}

.btn-primary {
    background: #0D9488;
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #0F766E;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .story-card {
        padding: 18px;
    }
    
    .story-content h3 {
        font-size: 16px;
    }
    
    .story-content p {
        font-size: 14px;
    }
    
    .story-item {
        font-size: 12px;
        padding: 2px 10px;
    }
}