/* ============================================================
   RoozBook - Influencer Profile Page Styles
   ============================================================ */

.influencer-page {
    max-width: 800px;
    margin: 0 auto;
}

/* Profile Header */
.influencer-header {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #eee;
    margin-bottom: 24px;
    text-align: right;
}

.influencer-avatar-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 0 14px 0;
    border: 3px solid #e67e22;
    background: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.influencer-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.influencer-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.influencer-role {
    color: #e67e22;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.influencer-bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    max-width: 100%;
    margin: 0 0 16px 0;
    text-align: right;
}

.influencer-stats {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    margin-bottom: 16px;
}

.influencer-stat {
    text-align: right;
}

.influencer-stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
}

.influencer-stat-label {
    font-size: 0.75rem;
    color: #999;
}

.influencer-social-links {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
}

.influencer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.influencer-social-link:hover {
    background: #e67e22;
    color: #fff;
}

/* Articles List */
.influencer-articles {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.inf-article-card {
    display: flex;
    gap: 16px;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.2s ease;
}

.inf-article-card:hover {
    border-color: #e67e22;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.inf-article-image {
    width: 180px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.inf-article-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.inf-article-body {
    flex: 1;
}

.inf-article-date {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 4px;
}

.inf-article-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 6px;
}

.inf-article-title a {
    color: #1a1a1a;
}

.inf-article-title a:hover {
    color: #e67e22;
}

.inf-article-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 6px;
}

.inf-article-meta {
    font-size: 0.78rem;
    color: #999;
    display: flex;
    gap: 12px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.85rem;
    color: #555;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-btn.active,
.page-btn:hover {
    background: #e67e22;
    color: #fff;
    border-color: #e67e22;
}

/* Responsive */
@media (max-width: 768px) {
    .influencer-header {
        padding: 20px;
        text-align: center;
    }
    
    .influencer-avatar-lg {
        margin: 0 auto 14px auto;
    }
    
    .influencer-stats {
        justify-content: center;
    }
    
    .influencer-social-links {
        justify-content: center;
    }
    
    .inf-article-card {
        flex-direction: column;
    }
    
    .inf-article-image {
        width: 100%;
    }
}