/* Profile Posts Page Styles */

.posts-wrapper {
    background: linear-gradient(135deg, #F5F5F5 0%, #f8fafc 100%);
    min-height: 100vh;
    padding: 2rem 0;
    max-width: 960px;
}

/* Profile Header */
.profile-header {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 51, 102, 0.08);
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-green);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
}

.profile-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin: 0 0 0.5rem 0;
}

.profile-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .posts-wrapper {
        padding: 1rem;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .profile-avatar {
        width: 70px;
        height: 70px;
    }

    .profile-title {
        font-size: 1.5rem;
    }

    .profile-subtitle {
        font-size: 0.9rem;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .posts-wrapper {
        padding: 0.75rem;
    }

    .profile-header {
        padding: 1.25rem;
    }

    .profile-avatar {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }

    .profile-title {
        font-size: 1.25rem;
    }

    .profile-subtitle {
        font-size: 0.85rem;
    }
}
